projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7520f31
)
Don't check whether file is readable until we have decided not to ignore it.
author
Paul Eggert
<eggert@twinsun.com>
Thu, 29 Jul 1993 19:56:38 +0000
(19:56 +0000)
committer
Paul Eggert
<eggert@twinsun.com>
Thu, 29 Jul 1993 19:56:38 +0000
(19:56 +0000)
lib-src/rcs-checkin
patch
|
blob
|
history
diff --git
a/lib-src/rcs-checkin
b/lib-src/rcs-checkin
index 88fd01125f3a71695f92d4cf39d857d1c3ff0faf..7b894eac83df0db6fe903e080605803e86c701df 100755
(executable)
--- a/
lib-src/rcs-checkin
+++ b/
lib-src/rcs-checkin
@@
-35,9
+35,6
@@
ls_owner_pattern='[^ ][^ ]* *[^ ][^ ]* *\([^ ][^ ]*\)'
for file
do
- # Check that file is readable.
- <$file || exit
-
# Make it easier to say `rcs-checkin *'
# by ignoring file names that already contain `~', or end in `,v'.
case $file in
@@
-46,6
+43,9
@@
do
# Ignore non-files too.
test -f "$file" || continue
+ # Check that file is readable.
+ <$file || exit
+
# If the RCS file does not already exist,
# initialize it with a description from $file's first line.
rlog -R "$file" >/dev/null 2>&1 ||